observations
Class DomainObject

java.lang.Object
  extended byobservations.DomainObject
All Implemented Interfaces:
DomainInterface
Direct Known Subclasses:
Observation, Patient, Phenomenon, PhenomenonType, Unit

public abstract class DomainObject
extends java.lang.Object
implements DomainInterface

DomainObject Every object should inherit from this one.

Version:
1.0 2004-08-10
Author:
Sascha Hemminger

Constructor Summary
DomainObject()
          Default constructor.
DomainObject(java.lang.String name)
          Constructs a new object with a name.
 
Method Summary
 java.lang.String getName()
          Gives the name of the object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DomainObject

public DomainObject()
Default constructor.


DomainObject

public DomainObject(java.lang.String name)
Constructs a new object with a name.

Parameters:
name - name of the object
Method Detail

getName

public java.lang.String getName()
Gives the name of the object.

Specified by:
getName in interface DomainInterface
Returns:
name of a particular DomainObject
See Also:
DomainInterface.getName()